common: sched_sedf: Remove unused functions
authorJulien Grall <julien.grall@linaro.org>
Wed, 26 Mar 2014 14:34:29 +0000 (15:34 +0100)
committerJan Beulich <jbeulich@suse.com>
Wed, 26 Mar 2014 14:34:29 +0000 (15:34 +0100)
commit786d4b8bbb2390e23a547a0906c9449a3a45c0e8
tree8721c77e312d770d3e618e42436eab4320fb412c
parent1e2f150c16e1ab954eb7c384e2d905f1d62209af
common: sched_sedf: Remove unused functions

Clang 3.5 will fail to compile xen/common/sched_sedf.c because some function
are not used:

sched_sedf.c:141:20: error: unused function 'extraq_add_head' [-Werror,-Wunused-function]
static inline void extraq_add_head(struct vcpu *d, int i)
                       ^
sched_sedf.c:147:20: error: unused function 'extraq_add_tail' [-Werror,-Wunused-function]
static inline void extraq_add_tail(struct vcpu *d, int i)

Signed-off-by: Julien Grall <julien.grall@linaro.org>
Acked-by: George Dunlap <george.dunlap@eu.citrix.com>
xen/common/sched_sedf.c